.resultats-meteo-container {
    height: 144px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resultats-meteo-container .meteo-container {
    width: 396px;
    justify-content: space-evenly;
}

.resultats-meteo-container .btn-accueil,
.resultats-meteo-container .btn-retour {
    width: 102px;
    height: 100%;
    background-color: #D34B34;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 3px 6px #00000029;
}
.resultats-meteo-container .btn-accueil span,
.resultats-meteo-container .btn-retour span {
    margin-top: 10px;
    text-transform: uppercase;
    color: white;
    font-family: 'OpenSans-ExtraBold';
    font-size: 18px;
}


.resultats-trait {
    margin-top: 28px;
    height: 1px;
    background-color: white;
}

.resultats-titre-container {
    position: relative;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    text-transform: uppercase;
}
.resultats-titre-rubrique {
    font-size: 62px;
    font-family: 'Hansief Rough';
}
.resultats-titre-sous {
    font-size: 30px;
    font-family: 'OpenSans-Regular';
}


.resultats-liste {
    margin-top: 15px;
    overflow-y: auto;
    height: 527px;
}
.resultats-liste::-webkit-scrollbar {
    display: none;
}
.resultats-liste > div {
    height: fit-content;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}
.resultats-vignette {
    display: flex;
    flex-direction: column;
}
.resultats-vignette-photo {
    width: 200px;
    height: 96px;
    position: relative;
    background-color: #D34B34;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}
.resultats-vignette-distance {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 5px 8px;
    background-color: #FFFFFFE0;
    border-radius: 4px;
    font-family: 'OpenSans-Bold';
    font-size: 12px;
}
.resultats-vignette-classement {
    position: absolute;
    bottom: 8px;
    left: 8px;
}
.resultats-vignette-ouvert {
    position: absolute;
    top: 8px;
    left: 8px;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 5px 8px;
    color: white;
    font-family: 'OpenSans-Bold';
    text-transform: uppercase;
    font-size: 11px;
}
.resultats-vignette-ouvert[data-etat="ouvert"] { background-color: #559432; }
.resultats-vignette-ouvert[data-etat="ferme"] { background-color: #D34B34; }

.resultats-vignette-titre {
    color: white;
    margin-top: 4px;
    padding: 0 5px;
    font-size: 12px;
    font-family: 'OpenSans-Bold';
    text-transform: uppercase;
}
.resultats-vignette-titre span {
    font-family: 'OpenSans-Regular';
}

.resultats-vignette-favoris {
    position: absolute;
    right: 14px;
    bottom: 14px;
    content: url('../img/ico-coeur-vide.svg');
    width: 40px;
}
.resultats-vignette-favoris.active {
    content: url('../img/ico-ceur.svg');
}
.resultats-vignette-favoris.poke {
    animation: poke 400ms linear;
}

@keyframes poke {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.4;
    }
    100% {
        scale: 1;
    }
}

.resultats-vignette-categorie {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 8px;
    border-radius: 4px;
    font-family: 'OpenSans-Regular';
    color: white;
    font-size: 12px;
    max-width: 84px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* LOISIRS */
.categorie_bng[data-categorie="piscine"],
.categorie_bng[data-categorie="sports_eaux_vives"] {
    background-color: #7DD4EB;
}
.categorie_bng[data-categorie="petanque"] {
    background-color: #D34B34;
}
.categorie_bng[data-categorie="equitation"],
.categorie_bng[data-categorie="escalade"] {
    background-color: #E19141;
}
.categorie_bng[data-categorie="jeux_de_balles"],
.categorie_bng[data-categorie="activites_parapentes_aeriennes"] {
    background-color: #FCBE00;
}
.categorie_bng[data-categorie="aires_jeux_skatepark"],
.categorie_bng[data-categorie="portaledge_bivouac_suspendu"] {
    background-color: #1C1C1C;
}
.categorie_bng[data-categorie="bibliotheques"],
.categorie_bng[data-categorie="aravis_parc_aventure"] {
    background-color: #8A56B6;
}
.categorie_bng[data-categorie="circuits_van"],
.categorie_bng[data-categorie="via_ferrata"] {
    background-color: #559432;
}
.categorie_bng[data-categorie="tir_arc"] {
    background-color: #275994;
}
.categorie_bng[data-categorie="cinema"] {
    background-color: #FEA3F7;
}
/*************/


.resultats-bottom {
    margin-top: 36px;
    display: flex;
    flex-direction: row;
    width: 632px;
    align-items: center;
}
.resultats-bottom > div:first-child {
    margin-right: 16px;
}

.resultats-espace {
    flex-grow: 1;
}
.resultats-compteur {
    width: 200px;
    font-size: 22px;
    color: white;
    font-family: 'Hansief Rough';
    text-transform: uppercase;
    text-align: center;
}